type net.hostLookupOrder

13 uses

	net (current package)
		conf.go#L210: func (c *conf) addrLookupOrder(r *Resolver, addr string) (ret hostLookupOrder, dnsConf *dnsConfig) {
		conf.go#L222: func (c *conf) hostLookupOrder(r *Resolver, hostname string) (ret hostLookupOrder, dnsConf *dnsConfig) {
		conf.go#L231: func (c *conf) lookupOrder(r *Resolver, hostname string) (ret hostLookupOrder, dnsConf *dnsConfig) {
		conf.go#L233: 	var fallbackOrder hostLookupOrder
		dnsclient_unix.go#L540: type hostLookupOrder int
		dnsclient_unix.go#L544: 	hostLookupCgo      hostLookupOrder = iota
		dnsclient_unix.go#L551: var lookupOrderName = map[hostLookupOrder]string{
		dnsclient_unix.go#L559: func (o hostLookupOrder) String() string {
		dnsclient_unix.go#L566: func (r *Resolver) goLookupHostOrder(ctx context.Context, name string, order hostLookupOrder, conf *dnsConfig) (addrs []string, err error) {
		dnsclient_unix.go#L605: func (r *Resolver) goLookupIP(ctx context.Context, network, host string, order hostLookupOrder, conf *dnsConfig) (addrs []IPAddr, err error) {
		dnsclient_unix.go#L610: func (r *Resolver) goLookupIPCNAMEOrder(ctx context.Context, network, name string, order hostLookupOrder, conf *dnsConfig) (addrs []IPAddr, cname dnsmessage.Name, err error) {
		dnsclient_unix.go#L822: func (r *Resolver) goLookupCNAME(ctx context.Context, host string, order hostLookupOrder, conf *dnsConfig) (string, error) {
		dnsclient_unix.go#L828: func (r *Resolver) goLookupPTR(ctx context.Context, addr string, order hostLookupOrder, conf *dnsConfig) ([]string, error) {